???.data   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 8
rs 9.4285
c 0
b 0
f 0
1
Vue.use(require('vue-resource'));
1 ignored issue
show
Bug introduced by
The variable Vue seems to be never declared. If this is a global, consider adding a /** global: Vue */ comment.

This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.

To learn more about declaring variables in Javascript, see the MDN.

Loading history...
2
3
export default {
4
    data: function () {
5
        return {
6
            /**
7
             * Current ajax implementation.
8
             */
9
            ajax: this.$http
10
        }
11
    },
12
}
13